from small one page howto to huge articles all in one place

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

83401

userrating:

average rating: 1.2 (52 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.3 (33 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2026-02-21
async-lru - 2.2.0
Ebuild name:

dev-python/async-lru-2.2.0

Description

Simple lru_cache for asyncio

Added to portage

2026-02-21

awscli - 1.44.44
Ebuild name:

app-admin/awscli-1.44.44

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-21

boto3 - 1.42.54
Ebuild name:

dev-python/boto3-1.42.54

Description

The AWS SDK for Python

Added to portage

2026-02-21

botocore - 1.42.54
Ebuild name:

dev-python/botocore-1.42.54

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-21

devedeng - 4.21.2
Ebuild name:

media-video/devedeng-4.21.2

Description

DevedeNG is a program to create video DVDs and CDs (VCD, sVCD or CVD)

Added to portage

2026-02-21

django-polymorphic - 4.11.1
Ebuild name:

dev-python/django-polymorphic-4.11.1

Description

Seamless Polymorphic Inheritance for Django Models

Added to portage

2026-02-21

environs - 14.6.0
Ebuild name:

dev-python/environs-14.6.0

Description

Python library for simplified environment variable parsing

Added to portage

2026-02-21

fixtures - 4.3.0
Ebuild name:

dev-python/fixtures-4.3.0

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2026-02-21

free42 - 3.3.11
Ebuild name:

app-emulation/free42-3.3.11

Description

An HP-42S Calculator Simulator

Added to portage

2026-02-21

gcc - 13.4.1_p20260219
Ebuild name:

sys-devel/gcc-13.4.1_p20260219

Description

The GNU Compiler Collection

Added to portage

2026-02-21

gcc - 14.3.1_p20260220
Ebuild name:

sys-devel/gcc-14.3.1_p20260220

Description

The GNU Compiler Collection

Added to portage

2026-02-21

greenlet - 3.3.2
Ebuild name:

dev-python/greenlet-3.3.2

Description

Lightweight in-process concurrent programming

Added to portage

2026-02-21

heroic-bin - 2.20.0
Ebuild name:

games-util/heroic-bin-2.20.0

Description

GOG and Epic Games Launcher for Linux

Added to portage

2026-02-21

i2p - 2.11.0
Ebuild name:

net-vpn/i2p-2.11.0

Description

A privacy-centric, anonymous network

Added to portage

2026-02-21

iptables - 1.8.12
Ebuild name:

net-firewall/iptables-1.8.12

Description

Linux kernel (2.4+) firewall, NAT and packet mangling tools

Added to portage

2026-02-21

jsonschema-path - 0.4.1
Ebuild name:

dev-python/jsonschema-path-0.4.1

Description

JSONSchema Spec with object-oriented paths

Added to portage

2026-02-21

keystoneauth1 - 5.13.1
Ebuild name:

dev-python/keystoneauth1-5.13.1

Description

This package contains tools for authenticating to an OpenStack-base

Added to portage

2026-02-21

lego - 4.32.0
Ebuild name:

app-crypt/lego-4.32.0

Description

Let's Encrypt/ACME client (like certbot or acme.sh) and library written in Go

Added to portage

2026-02-21

microsoft-edge - 145.0.3800.70
Ebuild name:

www-client/microsoft-edge-145.0.3800.70

Description

The web browser from Microsoft

Added to portage

2026-02-21

microsoft-edge-beta - 146.0.3856.13
Ebuild name:

www-client/microsoft-edge-beta-146.0.3856.13

Description

The web browser from Microsoft

Added to portage

2026-02-21

microsoft-edge-dev - 146.0.3856.13
Ebuild name:

www-client/microsoft-edge-dev-146.0.3856.13

Description

The web browser from Microsoft

Added to portage

2026-02-21

mkdocs-static-i18n - 1.3.1
Ebuild name:

dev-python/mkdocs-static-i18n-1.3.1

Description

MkDocs i18n plugin using static translation markdown files

Added to portage

2026-02-21

mkdocstrings-python - 2.0.3
Ebuild name:

dev-python/mkdocstrings-python-2.0.3

Description

Python handler for dev-python/mkdocstrings

Added to portage

2026-02-21

multi-term - 1.4-r1
Ebuild name:

app-emacs/multi-term-1.4-r1

Description

Manage multiple terminal buffers in Emacs

Added to portage

2026-02-21

multiple-cursors - 1.5.0
Ebuild name:

app-emacs/multiple-cursors-1.5.0

Description

Multiple cursors for Emacs

Added to portage

2026-02-21

mumble - 1.6.0_pre20260215-r1
Ebuild name:

net-voip/mumble-1.6.0_pre20260215-r1

Description

Open source, low-latency, high quality voice chat software

Added to portage

2026-02-21

murmur - 1.6.0_pre20260215-r1
Ebuild name:

net-voip/murmur-1.6.0_pre20260215-r1

Description

Open source, low-latency, high quality voice chat server

Added to portage

2026-02-21

nss - 3.121
Ebuild name:

dev-libs/nss-3.121

Description

Mozilla's Network Security Services library that implements PKI support

Added to portage

2026-02-21

openpgp-keys-dovecot - 20260122
Ebuild name:

sec-keys/openpgp-keys-dovecot-20260122

Description

OpenPGP keys used by net-mail/dovecot

Added to portage

2026-02-21

openpgp-keys-postfix - 20260122
Ebuild name:

sec-keys/openpgp-keys-postfix-20260122

Description

OpenPGP keys used by mail-mta/postfix

Added to portage

2026-02-21

oslo-concurrency - 7.4.0
Ebuild name:

dev-python/oslo-concurrency-7.4.0

Description

Oslo Concurrency library

Added to portage

2026-02-21

oslo-utils - 10.0.0
Ebuild name:

dev-python/oslo-utils-10.0.0

Description

Oslo Utility library

Added to portage

2026-02-21

pathable - 0.5.0
Ebuild name:

dev-python/pathable-0.5.0

Description

Object-oriented paths

Added to portage

2026-02-21

pdns - 5.0.3
Ebuild name:

net-dns/pdns-5.0.3

Description

The PowerDNS Daemon

Added to portage

2026-02-21

peewee - 4.0.0
Ebuild name:

dev-python/peewee-4.0.0

Description

Small Python ORM

Added to portage

2026-02-21

pipdeptree - 2.31.0
Ebuild name:

dev-python/pipdeptree-2.31.0

Description

Utility for displaying installed packages in a dependency tree

Added to portage

2026-02-21

plus42 - 1.3.13
Ebuild name:

app-emulation/plus42-1.3.13

Description

An Enhanced HP-42S Calculator Simulator

Added to portage

2026-02-21

puremagic - 2.0.0
Ebuild name:

dev-python/puremagic-2.0.0

Description

Pure python implementation of magic file detection

Added to portage

2026-02-21

pylint - 4.0.5
Ebuild name:

dev-python/pylint-4.0.5

Description

Python code static checker

Added to portage

2026-02-21

selenium - 4.41.0
Ebuild name:

dev-python/selenium-4.41.0

Description

Python language binding for Selenium Remote Control

Added to portage

2026-02-21

selenium-manager - 4.41.0
Ebuild name:

dev-util/selenium-manager-4.41.0

Description

CLI tool that manages the browser/driver infrastructure required b

Added to portage

2026-02-21

sphinxcontrib-programoutput - 0.19
Ebuild name:

dev-python/sphinxcontrib-programoutput-0.19

Description

Extension to sphinx to include program output

Added to portage

2026-02-21

stestr - 4.2.1
Ebuild name:

dev-python/stestr-4.2.1

Description

A parallel Python test runner built around subunit

Added to portage

2026-02-21

stevedore - 5.7.0
Ebuild name:

dev-python/stevedore-5.7.0

Description

Manage dynamic plugins for Python applications

Added to portage

2026-02-21

tifffile - 2026.2.20
Ebuild name:

dev-python/tifffile-2026.2.20

Description

Read and write TIFF files

Added to portage

2026-02-21

tox - 4.44.0
Ebuild name:

dev-python/tox-4.44.0

Description

virtualenv-based automation of test activities

Added to portage

2026-02-21

virtualbox-modules - 7.2.6-r2
Ebuild name:

app-emulation/virtualbox-modules-7.2.6-r2

Description

Kernel Modules for Virtualbox

Added to portage

2026-02-21

wine-staging - 11.3
Ebuild name:

app-emulation/wine-staging-11.3

Description

Free implementation of Windows(tm) on Unix, with Wine-Staging patch

Added to portage

2026-02-21

wine-vanilla - 11.3
Ebuild name:

app-emulation/wine-vanilla-11.3

Description

Free implementation of Windows(tm) on Unix, without external patchs

Added to portage

2026-02-21

xvfbwrapper - 0.2.20
Ebuild name:

dev-python/xvfbwrapper-0.2.20

Description

Python wrapper for running a display inside X virtual framebuffer

Added to portage

2026-02-21

2026-02-20
acl - 2.3.2-r3
Ebuild name:

sys-apps/acl-2.3.2-r3

Description

Access control list utilities, libraries, and headers

Added to portage

2026-02-20

awscli - 1.44.43
Ebuild name:

app-admin/awscli-1.44.43

Description

Universal Command Line Environment for AWS

Added to portage

2026-02-20

bcachefs-tools - 1.36.1
Ebuild name:

sys-fs/bcachefs-tools-1.36.1

Description

Tools for bcachefs

Added to portage

2026-02-20

boto3 - 1.42.53
Ebuild name:

dev-python/boto3-1.42.53

Description

The AWS SDK for Python

Added to portage

2026-02-20

botocore - 1.42.53
Ebuild name:

dev-python/botocore-1.42.53

Description

Low-level, data-driven core of boto 3

Added to portage

2026-02-20

chrome-binary-plugins - 146.0.7680.16_beta
Ebuild name:

www-plugins/chrome-binary-plugins-146.0.7680.16_beta

Description

Binary plugins from Google Chrome for use in C

Added to portage

2026-02-20

chromium - 146.0.7680.16
Ebuild name:

www-client/chromium-146.0.7680.16

Description

Open-source version of Google Chrome web browser

Added to portage

2026-02-20

devcontainer - 0.83.2
Ebuild name:

app-containers/devcontainer-0.83.2

Description

Reference implementation of the Development Containers specifica

Added to portage

2026-02-20

dist-kernel - 5.10.251
Ebuild name:

virtual/dist-kernel-5.10.251

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 5.15.201
Ebuild name:

virtual/dist-kernel-5.15.201

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 6.1.164
Ebuild name:

virtual/dist-kernel-6.1.164

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 6.12.74
Ebuild name:

virtual/dist-kernel-6.12.74

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 6.18.13
Ebuild name:

virtual/dist-kernel-6.18.13

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 6.19.3
Ebuild name:

virtual/dist-kernel-6.19.3

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dist-kernel - 6.6.127
Ebuild name:

virtual/dist-kernel-6.6.127

Description

Virtual to depend on any Distribution Kernel

Added to portage

2026-02-20

dj-database-url - 3.1.2
Ebuild name:

dev-python/dj-database-url-3.1.2

Description

Use Database URLs in your Django Application

Added to portage

2026-02-20

dune - 3.21.1-r2
Ebuild name:

dev-ml/dune-3.21.1-r2

Description

A composable build system for OCaml

Added to portage

2026-02-20

dune-site - 3.21.1-r1
Ebuild name:

dev-ml/dune-site-3.21.1-r1

Description

Embed locations informations inside executable and libraries

Added to portage

2026-02-20

ffmpeg-chromium - 146
Ebuild name:

media-video/ffmpeg-chromium-146

Description

FFmpeg built specifically for codec support in Chromium-based brows

Added to portage

2026-02-20

flask - 3.1.3
Ebuild name:

dev-python/flask-3.1.3

Description

A microframework based on Werkzeug, Jinja2 and good intentions

Added to portage

2026-02-20

gentoo-kernel - 5.10.251
Ebuild name:

sys-kernel/gentoo-kernel-5.10.251

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 5.15.201
Ebuild name:

sys-kernel/gentoo-kernel-5.15.201

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 6.1.164
Ebuild name:

sys-kernel/gentoo-kernel-6.1.164

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 6.12.74
Ebuild name:

sys-kernel/gentoo-kernel-6.12.74

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 6.18.13
Ebuild name:

sys-kernel/gentoo-kernel-6.18.13

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 6.19.3
Ebuild name:

sys-kernel/gentoo-kernel-6.19.3

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel - 6.6.127
Ebuild name:

sys-kernel/gentoo-kernel-6.6.127

Description

Linux kernel built with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 5.10.251
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.10.251

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 5.15.201
Ebuild name:

sys-kernel/gentoo-kernel-bin-5.15.201

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 6.1.164
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.1.164

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 6.12.74
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.12.74

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 6.18.13
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.18.13

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 6.19.3
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.19.3

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-kernel-bin - 6.6.127
Ebuild name:

sys-kernel/gentoo-kernel-bin-6.6.127

Description

Pre-built Linux kernel with Gentoo patches

Added to portage

2026-02-20

gentoo-sources - 5.10.250
Ebuild name:

sys-kernel/gentoo-sources-5.10.250

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 5.15.201
Ebuild name:

sys-kernel/gentoo-sources-5.15.201

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 6.1.164
Ebuild name:

sys-kernel/gentoo-sources-6.1.164

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 6.12.74
Ebuild name:

sys-kernel/gentoo-sources-6.12.74

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 6.18.13
Ebuild name:

sys-kernel/gentoo-sources-6.18.13

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 6.19.3
Ebuild name:

sys-kernel/gentoo-sources-6.19.3

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-sources - 6.6.127
Ebuild name:

sys-kernel/gentoo-sources-6.6.127

Description

Full sources including the Gentoo patchset for the . kernel tree

Added to portage

2026-02-20

gentoo-systemd-integration - 9-r2
Ebuild name:

sys-apps/gentoo-systemd-integration-9-r2

Description

systemd integration files for Gentoo

Added to portage

2026-02-20

google-chrome-beta - 146.0.7680.16
Ebuild name:

www-client/google-chrome-beta-146.0.7680.16

Description

The web browser from Google

Added to portage

2026-02-20

gputils - 1.5.2-r1
Ebuild name:

dev-embedded/gputils-1.5.2-r1

Description

Tools including assembler, linker and librarian for PIC microcontroll

Added to portage

2026-02-20

grpcio - 1.78.1
Ebuild name:

dev-python/grpcio-1.78.1

Description

HTTP/2-based RPC framework

Added to portage

2026-02-20

grpcio-status - 1.78.1
Ebuild name:

dev-python/grpcio-status-1.78.1

Description

Reference package for GRPC Python status proto mapping

Added to portage

2026-02-20

isort - 8.0.0
Ebuild name:

dev-python/isort-8.0.0

Description

A python utility/library to sort imports

Added to portage

2026-02-20

jdbc-mysql - 9.6.0
Ebuild name:

dev-java/jdbc-mysql-9.6.0

Description

JDBC Type 4 driver for MySQL

Added to portage

2026-02-20

krita - 6.0.0_beta2
Ebuild name:

media-gfx/krita-6.0.0_beta2

Description

Free digital painting application. Digital Painting, Creative Freedom

Added to portage

2026-02-20

libgcrypt - 1.12.1
Ebuild name:

dev-libs/libgcrypt-1.12.1

Description

General purpose crypto library based on the code used in GnuPG

Added to portage

2026-02-20

libgpg-error - 1.59
Ebuild name:

dev-libs/libgpg-error-1.59

Description

Contains error handling functions used by GnuPG software

Added to portage

2026-02-20

mattermost-desktop-bin - 6.1.0_rc4
Ebuild name:

net-im/mattermost-desktop-bin-6.1.0_rc4

Description

Mattermost Desktop application

Added to portage

2026-02-20

mod_h2 - 2.0.39
Ebuild name:

www-apache/mod_h2-2.0.39

Description

HTTP/2 module for Apache

Added to portage

2026-02-20

muse - 3.20.2
Ebuild name:

app-emacs/muse-3.20.2

Description

An authoring and publishing environment for Emacs

Added to portage

2026-02-20

nagios-mode - 0.4
Ebuild name:

app-emacs/nagios-mode-0.4

Description

Major mode for editing Nagios configuration files

Added to portage

2026-02-20

navi2ch - 1.8.4-r2
Ebuild name:

app-emacs/navi2ch-1.8.4-r2

Description

A navigator for the Japanese textboard 2ch

Added to portage

2026-02-20

opam - 2.2.1-r1
Ebuild name:

dev-ml/opam-2.2.1-r1

Description

A source-based package manager for OCaml

Added to portage

2026-02-20

protobuf-java - 4.33.5
Ebuild name:

dev-java/protobuf-java-4.33.5

Description

Core Protocol Buffers library

Added to portage

2026-02-20

rclone - 1.73.1
Ebuild name:

net-misc/rclone-1.73.1

Description

A program to sync files to and from various cloud storage providers

Added to portage

2026-02-20

regex - 2026.2.19
Ebuild name:

dev-python/regex-2026.2.19

Description

Alternative regular expression module to replace re

Added to portage

2026-02-20

responses - 0.26.0
Ebuild name:

dev-python/responses-0.26.0

Description

Utility for mocking out the Python Requests library

Added to portage

2026-02-20

rich - 14.3.3
Ebuild name:

dev-python/rich-14.3.3

Description

Python library for rendering rich text, tables, etc. to the terminal

Added to portage

2026-02-20

samba - 4.22.8
Ebuild name:

net-fs/samba-4.22.8

Description

Samba Suite Version 4

Added to portage

2026-02-20

samba - 4.24.0_rc1
Ebuild name:

net-fs/samba-4.24.0_rc1

Description

Samba Suite Version 4

Added to portage

2026-02-20

sdcc - 4.5.0
Ebuild name:

dev-embedded/sdcc-4.5.0

Description

Small device C compiler (for various microprocessors)

Added to portage

2026-02-20

signal-desktop-bin - 7.90.0
Ebuild name:

net-im/signal-desktop-bin-7.90.0

Description

Allows you to send and receive messages of Signal Messenger on you

Added to portage

2026-02-20

swi-prolog - 10.0.1
Ebuild name:

dev-lang/swi-prolog-10.0.1

Description

Versatile implementation of the Prolog programming language

Added to portage

2026-02-20

talloc - 2.4.4
Ebuild name:

sys-libs/talloc-2.4.4

Description

Samba talloc library

Added to portage

2026-02-20

tdb - 1.4.15
Ebuild name:

sys-libs/tdb-1.4.15

Description

Simple database API

Added to portage

2026-02-20

testtools - 2.8.4
Ebuild name:

dev-python/testtools-2.8.4

Description

Extensions to the Python standard library unit testing framework

Added to portage

2026-02-20

tox - 4.41.0
Ebuild name:

dev-python/tox-4.41.0

Description

virtualenv-based automation of test activities

Added to portage

2026-02-20

transmission - 4.1.1
Ebuild name:

net-p2p/transmission-4.1.1

Description

A fast, easy, and free BitTorrent client

Added to portage

2026-02-20

typeguard - 4.5.1
Ebuild name:

dev-python/typeguard-4.5.1

Description

Run-time type checker for Python

Added to portage

2026-02-20

vanilla-kernel - 5.10.251
Ebuild name:

sys-kernel/vanilla-kernel-5.10.251

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 5.15.201
Ebuild name:

sys-kernel/vanilla-kernel-5.15.201

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 6.1.164
Ebuild name:

sys-kernel/vanilla-kernel-6.1.164

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 6.12.74
Ebuild name:

sys-kernel/vanilla-kernel-6.12.74

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 6.18.13
Ebuild name:

sys-kernel/vanilla-kernel-6.18.13

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 6.19.3
Ebuild name:

sys-kernel/vanilla-kernel-6.19.3

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-kernel - 6.6.127
Ebuild name:

sys-kernel/vanilla-kernel-6.6.127

Description

Linux kernel built from vanilla upstream sources

Added to portage

2026-02-20

vanilla-sources - 5.10.251
Ebuild name:

sys-kernel/vanilla-sources-5.10.251

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 5.15.201
Ebuild name:

sys-kernel/vanilla-sources-5.15.201

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 6.1.164
Ebuild name:

sys-kernel/vanilla-sources-6.1.164

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 6.12.74
Ebuild name:

sys-kernel/vanilla-sources-6.12.74

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 6.18.13
Ebuild name:

sys-kernel/vanilla-sources-6.18.13

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 6.19.3
Ebuild name:

sys-kernel/vanilla-sources-6.19.3

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

vanilla-sources - 6.6.127
Ebuild name:

sys-kernel/vanilla-sources-6.6.127

Description

Full sources for the Linux kernel

Added to portage

2026-02-20

virtualbox-guest-modules - 7.2.6-r1
Ebuild name:

app-emulation/virtualbox-guest-modules-7.2.6-r1

Description

Kernel Modules for Virtualbox Guest Additions

Added to portage

2026-02-20

virtualenv - 20.38.0
Ebuild name:

dev-python/virtualenv-20.38.0

Description

Virtual Python Environment builder

Added to portage

2026-02-20

werkzeug - 3.1.6
Ebuild name:

dev-python/werkzeug-3.1.6

Description

Collection of various utilities for WSGI applications

Added to portage

2026-02-20

z3 - 4.16.0
Ebuild name:

sci-mathematics/z3-4.16.0

Description

An efficient theorem prover

Added to portage

2026-02-20

rdf newsfeed | rss newsfeed | Atom newsfeed
Copyright 2004-2025 Sascha Nitsch Unternehmensberatung GmbH
- Copyright and legal notices -
Time to create this page: 91.9 ms